const compress/flate.huffmanValueShift
6 uses
compress/flate (current package)
inflate.go#L101: huffmanValueShift = 4
inflate.go#L186: h.chunks[reverse] = uint32(off<<huffmanValueShift | (huffmanChunkBits + 1))
inflate.go#L197: chunk := uint32(i<<huffmanValueShift | n)
inflate.go#L219: value := h.chunks[j] >> huffmanValueShift
inflate.go#L733: chunk = h.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&h.linkMask]
inflate.go#L745: return int(chunk >> huffmanValueShift), nil
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |